home *** CD-ROM | disk | FTP | other *** search
Text File | 1989-08-06 | 1.2 KB | 39 lines | [TEXT/TCEd] |
- #--------------------------------------------------------------
- # Description of the Pascl language
- #
- # by Thomas Carstensen May 14, 1989
- #--------------------------------------------------------------
-
- LANGUAGE Pascal
-
- EXTENSION .p .pas
-
- COMMENT (* *)
- COMMENT ONELINE { } 60 # Place comment at column 60
-
- BRACKET [ ]
- BRACKET ( )
- BRACKET begin end
- BRACKET record end
- BRACKET case end
-
- QUOTE ' '
- QUOTE " "
-
- RESERVED and array begin case const div do \
- downto else end file for forward function \
- goto if implementation in interface label \
- mod nil not of or otherwise packed \
- procedure program record repeat set \
- then to type unit until uses var \
- while with
-
- DESCRIPTION " The Pascal Programming Lanuage written by Thomas Carstensen" \
- " August 4, 1989"
-
- TEMPLATES
- If -> 'if (' ^ ') then' [1] begin [1] ^ [-1] end
- While -> 'while (' ^ ') do' [1] begin [1] ^ [-1] end
- Function -> 'function ' ^ ' (' ^ ) [0] begin [1] ^ [-1] end
- Procedure -> 'procedure ' ^ ' (' ^ ) [0] begin [1] ^ [-1] end
-